@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300&display=swap');

body{
    font-family: 'Poppins', sans-serif;
    background-color: black;
    color: white;
    margin: 0;       
    overflow-x: hidden;
}
h1,h2,h3,h4,h5,p{
    font-weight: normal;
    margin: 0;
}
#imageEffects{    
    z-index: -1;
    position: relative;
    display: inline-block;

    &:after {
      content: "";
        transition: 0.5s;
        position: absolute;
        display: block;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border-collapse: separate;
        box-shadow: inset 0 0 10vw 5vw rgba(0,0,0,0.7);
    }
}
#imageEffects.darken:after{
    box-shadow: inset 0 0 10vw 30vw rgba(0,0,0,1)
}
.opensInfo{
    position: absolute;
    z-index: 1;
    width: 98vw;
    height: 82vh;
}
#highlightedProjects{
    margin-bottom: 0;
    border-bottom: 0.1vh solid rgba(255, 255, 255, 0.509);
}
.projectInformation{
    position: absolute;
    bottom: 5vh;
    left: 3vw;   
}
.projectInformation h3{
    font-size: 4.5vh;
    z-index: 2;
}
.projectInformation h4{
    font-size: 3.5vh;
    z-index: 2;
}
header{
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    font-size: 5vh;
    background-color: black;
    z-index: 3;
    box-shadow: 0 0 5vh 0.5vh #474747;
    padding-left: 3vw;
}
header h1{
    display: inline;
}
#menuButton{
    position: absolute;
    right: 3vw;
}
.sectionTitle{
    position: absolute;
    top: 20vh;
    left: 3vw;
    font-size: 5vh;
    color: rgb(115, 35, 226);
}
.highlightedProjectImage{
    width: 99vw;
    height: 82vh;
    object-fit: cover;
    z-index: -3;
    margin-right: 0;
}
.slideshowPosition{
    position: absolute;
    bottom: 5vh;
    left: 50%;
    font-size: 3.5vh;
    transform: translate(-50%);
    font-size: 2vh;
    z-index: 2;
}
.slideshowPosition p{
    display: inline-block;
}
.back{
    position: absolute;
    left: 3vh;
    top: 50%;
    font-size: 3.5vh;
    transform: translate(0, -50%);
    z-index: 2;
}
.forward{
    position: absolute;
    right: 3vh;
    top: 50%;
    font-size: 3.5vh;
    transform: translate(0, -50%);
    z-index: 2;
}
.project, #projectsContainer{
    display: grid;
    grid-template-columns: 49.5% 49.5%;
    gap: 1vw;
    position: relative;
}
.projectImage{
    grid-row: 1 / span 2;
}
.projectImage img{
    width: 100%;
    object-fit: cover;
    height: 20vh;
    padding-top: 0.6vh;
    padding-left: 0.6vh;
}
.tags{
    position: absolute;
    bottom: 0;
    transform: translate(0, -50%);
}
section{
    padding-top: 5vh;
    padding-bottom: 5vh;
    padding-left: 1vw;
    padding-right: 1vw;
}
.project{
    background-color: #3c3c3c;
    box-shadow: 0 0 2vh 0.5vh #474747;
}
.project h4{
    font-size: 3.5vh;
    color: rgb(115, 35, 226);
}
.project h5{
    font-size: 3vh;
}
.sidebar{
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 3;
    top: 0;
    right: 0;
    background-color: #111;
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 6vh;    
    box-shadow: 0 0 5vh 0.5vh #474747;
}
.sidebar a{
    padding: 8px 8px 8px 32px;
    text-decoration: none;
    font-size: 25px;
    color: white;
    display: block;
    transition: 0.3s;
}
.sidebar .closebtn{
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
    margin-left: 50px;
}
.sidebar a:hover{
    color: #aaaaaadc; 
}
.clickable{
    transition: 0.3s;
}
.clickable:hover{
    color: #aaaaaadc; 
    cursor: pointer;
}
.project:hover{
    cursor: pointer;
    transform: scale(1.007);
}
#displayInformation{
    z-index: 4;
    position: fixed;
    background-color: black;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 5vh 0.5vh #474747;
    width: 0;
    border-radius: 2vw;
}
#displayInformation h1{
    font-size: 3vh;
}
#displayInformation h3{
    font-size: 2vh;
}
#displayInformation div{
    position: relative;
    padding: 0.7vw;
}
#displayInformation img{
    width: 40vw;
    height: 40vh;
    object-fit: cover;
    padding-bottom: 0;
}
#displayInformation h1{
    margin-top: 0;
    padding-bottom: 1vh;
}
.grayout{
    position: fixed;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: black;
    opacity: 0.75;
    z-index: 4;
}
.description{
    font-size: 2vh;
}
#displayInformation .closebtn{
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
    margin-left: 50px;
    z-index: 3;
    padding: 8px 8px 8px 32px;
    text-decoration: none;
    font-size: 25px;
    color: white;
    display: block;
    transition: 0.3s;
    font-size: 5vh;
}
#displayInformation .closebtn:hover{
    color: #aaaaaadc;
    cursor: pointer
} 
.about{
    display: block;
    margin: auto;
    width: 50%;
}
.myHeadshot{
    object-fit: cover;
    height: 50vh;
    border-radius: 50%;
    aspect-ratio: 1 / 1;
    display: block;
    margin: auto;
    width: 50%;   
    border: 0.2vw solid white; 
}
#main{
    padding: 2vw;
    display: grid;
    grid-template-columns: 49.5% 49.5%;
    position: relative;
}
.about h1{
    font-weight: bold;
    color: rgb(115, 35, 226);
}
.about h4{
    margin-top: 3vh;
}
.hobby{
    background-color: #3c3c3c;
    box-shadow: 0 0 2vh 0.5vh #474747;
    padding: 1vw;
    padding-top: 5vh;
    padding-bottom: 5vh;
    border-radius: 5vh;
    text-align: center;
}
.hobby:hover{
    transform: scale(1.03);
    cursor: pointer;
}
.photos{
    width: 50%;
    aspect-ratio: 1;
    filter: invert(0.9);
}
#hobbies{
    display: grid;
    gap: 5%;
    grid-template-columns: 15% 15% 15% 15%;
    position: relative;
    translate: 12%;
}
#aboutMe{
    text-align: center;
    max-width: 60vw;
    translate: 30%;
    margin-bottom: 10vh;
    margin-top: 7vh;
}
#aboutMe h2{
    color: rgb(115, 35, 226);
    margin-bottom: 1vh;
    font-weight: bold;
}
.hobby h4{
    text-decoration: underline;
    color: rgb(115, 35, 226);
}
#home{
    display: grid;
    grid-template-columns: 49.5% 49.5%;
    position: relative;    
    height: 90vh;

}
#homeImg{
    object-fit: cover;
    display: block;    
    width: 50%;
    margin-left: 50%;
    transform: translate(-40%);
}
.welcome{
    text-align: center;
    padding-top: 50%;    
    transform: translate(0, -40%);
}
.welcome p{
    align-self: center;
    margin-top: 5vh;
    max-width: 40vw;
    transform: translate(10%);
}
.welcome h1{
    color: rgb(115, 35, 226);
    font-weight: bold;
}
.contents{
    display: grid;
    gap: 2%;
    grid-template-columns: 27% 27% 27%;
    position: relative;    
    padding-left: 6.5vw;
    margin-bottom: 5vh;
}
.contents div{
    background-color: #3c3c3c;
    box-shadow: 0 0 2vh 0.5vh #474747;
    padding: 1vw;
    border-radius: 5vh;
}
.contents h4{
    text-decoration: underline;
    color: rgb(115, 35, 226);
}
.welcomeText{
    padding-bottom: 5vh;
}
.contact{
    text-align: center;
    display: grid;
    gap: 7%;
    grid-template-columns: 5% 5% 5% 5% 5%;
    position: relative;    
    translate: 21%;
    margin-bottom: 5vh;
}
.contact div{    
    border: 0.3vh solid white;
    border-radius: 50%;
    width: 9vh;
    height: 9vh;
}
.contact div img{
    width: 5vw;
    aspect-ratio: 1;
    width: 70%;
    transform: translate(0, 20%);
}
.contact div:hover{
    cursor: pointer;
    transform: scale(1.03);
}
.contents div:hover{
    cursor: pointer;
    transform: scale(1.03);
}
#line{
    margin: 9vh;
    margin-top: 55vh;
    border: 1px solid white;
}
#dates{
    margin-top: 9vh;
    display: grid;
    grid-template-columns: auto auto auto auto auto auto auto auto auto auto auto;
    margin-left: 7vh;
}
#dates p{
    rotate: 45deg;
}
.plan{    
    position: absolute;    
}
.timeIndicator{
    position: absolute;    
    top: 68%;
    font-size: 1.2vw;
}
.timelineConnector{
    position: absolute;
    border-left: 1px solid white;
    border-top: 1px solid white;
    height: 12vh;
    width: 1.5vh;
    z-index: -1;
}
.plan{
    background-color: #3c3c3c;
    box-shadow: 0 0 2vh 0.5vh #474747;
    border-radius: 5vh;
    padding: 1vw;
    transform: translate(0,-25%);
}
.plan:hover{
    cursor: pointer;
    transform: translate(0,-25%);
    padding: 1.1vw;
}
#timeline h2{
    position: absolute;
    top: 20vh;
    left: 4vw;
    color: rgb(115, 35, 226);
}
#futureSummary{
    margin-left: 3vw;
}
#futureSummary h2{
    color: rgb(115, 35, 226);    
}
#futureSummary p{
    margin-left: 2vw;
    margin-top: 1vh;
}
footer{
    padding: 3vh 0;
    margin-top: 4vw;
    box-shadow: 0 0 5vh 0.5vh #474747;
    text-align: center;
    background-color: black;  
    margin-left: 0;
    width: 100%;
}
#contact{
    text-align: center;   
    translate: 27%;
    margin-bottom: 5vh;      
    display: inline;
}
#contact div{    
    display: inline-block;
    border: 0.3vh solid white;
    border-radius: 50%;
    width: 9vh;
    height: 9vh;
}
#contact div img{
    width: 5vw;
    aspect-ratio: 1;
    width: 70%;
    transform: translate(0, 20%);
}
#contact div:hover{
    cursor: pointer;
    transform: scale(1.03);
}
#Credits{
    display: block;
    text-align: left;
    display: grid;
    grid-template-columns: auto auto;
    text-align: center;
}
#CreditsTitle{
    grid-column: 1 / span 2;
}
details{
    cursor: pointer;
}
.rate {
    float: left;
    height: 46px;
    padding: 0 10px;
}
.rate:not(:checked) > input {
    position:absolute;
    top:-9999px;
}
.rate:not(:checked) > label {
    float:right;
    width:1em;
    overflow:hidden;
    white-space:nowrap;
    cursor:pointer;
    font-size:30px;
    color:#ccc;
}
.rate:not(:checked) > label:before {
    content: '\2605  ';
}
.rate > input:checked ~ label {
    color: #ffc700;    
}
.rate:not(:checked) > label:hover,
.rate:not(:checked) > label:hover ~ label {
    color: #deb217;  
}
.rate > input:checked + label:hover,
.rate > input:checked + label:hover ~ label,
.rate > input:checked ~ label:hover,
.rate > input:checked ~ label:hover ~ label,
.rate > label:hover ~ input:checked ~ label {
    color: #c59b08;
}
#feedback{
    background-color: #3c3c3c;
    box-shadow: 0 0 2vh 0.5vh #474747;
    padding: 2vw;
    margin: 2vw;
}